-
Notifications
You must be signed in to change notification settings - Fork 836
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Take into account requirements for "isolate" or single-threaded runtimes #5284
Merged
xdoardo
merged 30 commits into
wasmer-5.1.0
from
5278-runtime-take-into-account-single-threaded-requirements
Jan 17, 2025
Merged
Take into account requirements for "isolate" or single-threaded runtimes #5284
xdoardo
merged 30 commits into
wasmer-5.1.0
from
5278-runtime-take-into-account-single-threaded-requirements
Jan 17, 2025
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
...since it's not necessarily creating a store anymore.
Note: the removal of the reference for `StoreSnapshots` in `TaskWasm` in favour of an owned value is due to an initial work for making `TaskWasm` `Send` or not leaking references that outlive spawned threads.
theduke
reviewed
Dec 5, 2024
let store_ref = store.as_store_ref(); | ||
let v8_store = store_ref.inner.store.as_v8(); | ||
|
||
if v8_store.thread_id != std::thread::current().id() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is used a lot... how about making it a method?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
…ble path (mod.rs instead of tokio.rs)
This is necessary because `clap` does not like when `conflicts_with_all` contains non-existing flags, and makes execution fail in debug mode.
xdoardo
force-pushed
the
5278-runtime-take-into-account-single-threaded-requirements
branch
from
January 16, 2025 14:09
6ae638b
to
73a27fa
Compare
theduke
approved these changes
Jan 17, 2025
xdoardo
deleted the
5278-runtime-take-into-account-single-threaded-requirements
branch
January 17, 2025 10:46
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
V8 needs Wasm entities to be created in the same thread they run in. This PR moves the creation of said entities down to the
task_wasm
function in WASIX.Caveats
This depends on a build of V8 with shared memory, which is not available yet - that is, running the precise code in this PR with wordpress won't work (again, because the wasm_c_api implementation of V8 does not support shared memories)